home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / WebObjects / WebObjectsDoc_HTML / Reuse / ReusableComponentsEx / ArrayEditorEx.wo / ArrayEditorEx.wod < prev    next >
Encoding:
Text File  |  1996-03-11  |  647 b   |  36 lines

  1. ////////////////////////
  2. //  ArrayEditorEx
  3. //  by Charles Lloyd
  4. ////////////////////////
  5.  
  6.  
  7. SubmitEdits: WOSubmitButton {
  8.     action = processForm;
  9.     value = "Submit Changes";
  10. };
  11.  
  12. MyArrayEditor: ArrayEditor {
  13.     array = localArray;
  14.     cellPadding = cellPadding;
  15.     cellSpacing = 0;
  16.     fieldSize = 15;
  17.     isEditable = isEditable;
  18. };
  19.  
  20. ArrayValues: WOString {
  21.     value = localArray;
  22. };
  23.  
  24. ToggleEditableButton: WOSubmitButton {
  25.     action = toggleEditable;
  26.     value = editableString;
  27. };
  28.  
  29. ComponentDescription: ComponentDescription {
  30.     componentName = "ArrayEditor";
  31. };
  32.  
  33. ShowSourceControls: ShowSource {
  34.     componentName = "ArrayEditor";
  35. }; 
  36.